The parameter context is not used and could be removed.
This check looks for parameters in functions that are not used in the function
body and are not followed by other parameters which are used inside the function.
The parameter type is not used and could be removed.
This check looks for parameters in functions that are not used in the function
body and are not followed by other parameters which are used inside the function.
The parameter message is not used and could be removed.
This check looks for parameters in functions that are not used in the function
body and are not followed by other parameters which are used inside the function.
Loading history...
24
get : function () { return (arguments.length > 0) ? this.logentries[parseInt(arguments[0])] : this.logentries; },
There is no return statement in this branch, but you do return something in other branches. Did you maybe miss it? If you do not want to return anything, consider adding return undefined; explicitly.
This check looks for parameters in functions that are not used in the function body and are not followed by other parameters which are used inside the function.